home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / python2.4 / sysmodule.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-10-18  |  819 b   |  31 lines

  1.  
  2. /* System module interface */
  3.  
  4. #ifndef Py_SYSMODULE_H
  5. #define Py_SYSMODULE_H
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. PyAPI_FUNC(PyObject *) PySys_GetObject(char *);
  11. PyAPI_FUNC(int) PySys_SetObject(char *, PyObject *);
  12. PyAPI_FUNC(FILE *) PySys_GetFile(char *, FILE *);
  13. PyAPI_FUNC(void) PySys_SetArgv(int, char **);
  14. PyAPI_FUNC(void) PySys_SetPath(char *);
  15.  
  16. PyAPI_FUNC(void) PySys_WriteStdout(const char *format, ...)
  17.             Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
  18. PyAPI_FUNC(void) PySys_WriteStderr(const char *format, ...)
  19.             Py_GCC_ATTRIBUTE((format(printf, 1, 2)));
  20.  
  21. PyAPI_DATA(PyObject *) _PySys_TraceFunc, *_PySys_ProfileFunc;
  22. PyAPI_DATA(int) _PySys_CheckInterval;
  23.  
  24. PyAPI_FUNC(void) PySys_ResetWarnOptions(void);
  25. PyAPI_FUNC(void) PySys_AddWarnOption(char *);
  26.  
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* !Py_SYSMODULE_H */
  31.